home *** CD-ROM | disk | FTP | other *** search
/ SPACE 2 / SPACE - Library 2 - Volume 1.iso / apps / 191a / examples / basic.st < prev    next >
Encoding:
Text File  |  1993-06-26  |  247 b   |  14 lines

  1. Class Main
  2. [
  3.     main
  4.         88 print.
  5.         3.14159 print.
  6.         'this is it' print.
  7.         #(this is also it) print.
  8.         88 respondsTo: #+ ; print.
  9.         Object respondsTo.
  10.         smalltalk at: 3 put: #(22 17).
  11.         (smalltalk at: 3) print.
  12.         Smalltalk respondsTo.
  13. ]
  14.